home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / graphics / display / mpega / src / mpega_decode.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-20  |  1.1 KB  |  41 lines

  1. /*------------------------------------------------------------------------------
  2.  
  3.     File    :    mpega_decode.h
  4.  
  5.     Author  :    Stéphane TAVENARD
  6.  
  7.     $VER:   mpega_decode.h  1.0  (23/06/1995)
  8.  
  9.     (C) Copyright 1995-1995 Stéphane TAVENARD
  10.     All Rights Reserved
  11.  
  12.     #Rev|   Date   |              Comment
  13.     ----|----------|--------------------------------------------------------
  14.     0    |27/05/1995| Initial revision                      ST
  15.     1    |23/06/1995| First release (aminet)                               ST
  16.  
  17.     ------------------------------------------------------------------------
  18.  
  19.     Defintion of MPEG audio decode functions
  20.  
  21. ------------------------------------------------------------------------------*/
  22.  
  23. #ifndef MPEGA_DECODE_H
  24. #define MPEGA_DECODE_H
  25.  
  26. #include "Mpega_decode_asm.h"
  27.  
  28. #define BSTR_BUFFER_SIZE  16384   /* Bit stream buffer */
  29.  
  30. frame_params *MPEGA_open( void );
  31. frame_params *MPEGA_close( frame_params *fr_ps );
  32.  
  33. int MPEGA_init_decode( frame_params *fr_ps );
  34.  
  35. int MPEGA_write_out( frame_params *fr_ps );
  36.  
  37. int MPEGA_decode_frame( frame_params *fr_ps );
  38.  
  39. #endif /* MPEGA_DECODE_H */
  40.  
  41.